home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000102_fdc@columbia.edu_Fri May 31 09:31:59 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  56 lines

  1. Article: 13399 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Redhat 7.3 and the "Alt" key
  6. Date: 31 May 2002 09:30:05 -0400
  7. Organization: Columbia University
  8. Lines: 39
  9. Message-ID: <ad7tst$jj1$1@watsol.cc.columbia.edu>
  10. References: <ufdkmo6qn4tb13@corp.supernews.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1022851806 12775 128.59.39.139 (31 May 2002 13:30:06 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 31 May 2002 13:30:06 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13399
  16.  
  17. In article <ufdkmo6qn4tb13@corp.supernews.com>,
  18. John Kidwell  <kidwell@hotrmail.com> wrote:
  19. : I recently upgraded my Redhat Linux box from 7.2 and 7.3. Prior to
  20. :     the upgrade I was able to define the alt keys, for instance "ALt-k"
  21. :     was \225.
  22. :     Now when a do a "SET KEY" and press "Alt-k", it looks like this:
  23. :     C-Kermit> show key
  24. :      Press key: 
  25. :      Key code \27 => Character: \27 (self, no translation)
  26. :     C-Kermit> k
  27. :     I'm using C-Kermit 8.0.200 and I recompiled it for the test. I also
  28. :     downloaded 8.0.201, compiled it and had the same results.
  29. :
  30. I have only a little bit to add to Jeff's answer.  I believe his theory is
  31. right -- your previous Linux version was treating the Alt key like a
  32. "meta" key (turning on the 8th bit); in your new version, Alt-key sequences
  33. are generating escape sequences.  This means that when you press, say,
  34. Alt-k, Kermit gets multiple characters.  Of course it has no way of knowing
  35. whether you typed each character individually, or they was generated by the
  36. terminal driver.  In any case, C-Kermit can map only single 7- or 8-bit
  37. characters.
  38.  
  39. The late, lamented NeXT workstation had an Alternate key which let you
  40. type 8-bit characters (in this case, accented letters from the NeXT
  41. Multinational character set), and these could be mapped by Kermit.  It was
  42. a handy arrangement, but an uncommon one.
  43.  
  44. You can read more about such phenomena here:
  45.  
  46.   http://www.columbia.edu/kermit/ckfaq.html#term
  47.  
  48. and here:
  49.  
  50.   http://www.columbia.edu/kermit/ckubwr.html#x3.3.3
  51.  
  52. - Frank
  53.